home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Apple Demos / Training / Apple Scanner Training / Scanner Tech - File Formats / card_7270.txt < prev    next >
Text File  |  1990-04-02  |  9KB  |  327 lines

  1. -- card: 7270 from stack: in
  2. -- bmap block id: 3736
  3. -- flags: 4000
  4. -- background id: 2601
  5. -- name: File Formats
  6. ----- HyperTalk script -----
  7. on openCard
  8.   hide menuBar
  9.   ResetMenuField
  10.   show card field "Title Center"
  11.   hide card field "Cover Card"
  12.   hide card field "Message Center 2"
  13.   hide card field "Display Message"
  14.   show card button "Next ..."
  15.   hide card button "Go Back"
  16.   set hilite of background button "Scan. Concepts" to false
  17.   set hilite of background button "How It Works" to false
  18.   set hilite of background button "The System" to false
  19.   set hilite of background button "File Formats" to true
  20.   hide card field "PICT"
  21.   hide card field "MacPaint"
  22.   hide card field "TIFF"
  23. end openCard
  24.  
  25. on closeCard
  26.   hide card field "Message Center 2"
  27.   show card field "Title Center"
  28.   hide card field "Cover Card"
  29.   hide card field "Display Message"
  30.   show card button "Next ..."
  31.   hide card button "Go Back"
  32.   set hilite of background button "Scan. Concepts" to false
  33.   set hilite of background button "How It Works" to false
  34.   set hilite of background button "The System" to false
  35.   set hilite of background button "File Formats" to true
  36.   hide card field "PICT"
  37.   hide card field "MacPaint"
  38.   hide card field "TIFF"
  39. end closeCard
  40.  
  41. on ResetMenuField
  42.   put " PICT" & return & " MacPaint" & return & " TIFF" & return into card field "Message Center 2"
  43. end ResetMenuField
  44.  
  45.  
  46.  
  47.  
  48. -- part 56 (button)
  49. -- low flags: 00
  50. -- high flags: 0000
  51. -- rect: left=451 top=3 right=42 bottom=491
  52. -- title width / last selected line: 0
  53. -- icon id / first selected line: 1004 / 1004
  54. -- text alignment: 1
  55. -- font id: 0
  56. -- text size: 12
  57. -- style flags: 0
  58. -- line height: 16
  59. -- part name: 
  60. ----- HyperTalk script -----
  61. on mouseUp
  62.   play harpsichord a4
  63.   global search
  64.   answer "Type of Search?" with "Browse" or "Automatic" or "Cancel"
  65.   if it is "Browse" then
  66.     visual wipe up slowly
  67.     go to card "Glossary" of stack "Glossary"
  68.   end if
  69.   if it is "Automatic" then
  70.     ask "Find Word?"
  71.     put it into search
  72.     if search is empty then
  73.       exit mouseUp
  74.     else
  75.       visual wipe up slowly
  76.       put "find search" into message box
  77.       hide message
  78.       go to card "Glossary" of stack "Glossary"
  79.       find word search in field "Text"
  80.       if the result is "not found" then
  81.         answer "Word not found." with "OK"
  82.         exit mouseUp
  83.       else
  84.         show card field id 13
  85.         wait 4 seconds
  86.         hide card field id 13
  87.       end if
  88.     end if
  89.   end if
  90. end mouseUp
  91.  
  92.  
  93. -- part 57 (button)
  94. -- low flags: 00
  95. -- high flags: 0000
  96. -- rect: left=402 top=3 right=42 bottom=438
  97. -- title width / last selected line: 0
  98. -- icon id / first selected line: 1008 / 1008
  99. -- text alignment: 1
  100. -- font id: 0
  101. -- text size: 12
  102. -- style flags: 0
  103. -- line height: 16
  104. -- part name: 
  105. ----- HyperTalk script -----
  106. on mouseUp
  107.   doMenu "Print Card"
  108. end  mouseUp
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. -- part 60 (field)
  116. -- low flags: 01
  117. -- high flags: 2004
  118. -- rect: left=14 top=77 right=203 bottom=203
  119. -- title width / last selected line: 0
  120. -- icon id / first selected line: 0 / 0
  121. -- text alignment: 0
  122. -- font id: 3
  123. -- text size: 12
  124. -- style flags: 0
  125. -- line height: 16
  126. -- part name: Title Center
  127.  
  128.  
  129. -- part 65 (field)
  130. -- low flags: 81
  131. -- high flags: 2004
  132. -- rect: left=189 top=77 right=252 bottom=501
  133. -- title width / last selected line: 0
  134. -- icon id / first selected line: 0 / 0
  135. -- text alignment: 0
  136. -- font id: 3
  137. -- text size: 12
  138. -- style flags: 0
  139. -- line height: 16
  140. -- part name: PICT
  141.  
  142.  
  143. -- part 66 (field)
  144. -- low flags: 81
  145. -- high flags: 2004
  146. -- rect: left=214 top=77 right=252 bottom=501
  147. -- title width / last selected line: 0
  148. -- icon id / first selected line: 0 / 0
  149. -- text alignment: 0
  150. -- font id: 3
  151. -- text size: 12
  152. -- style flags: 0
  153. -- line height: 16
  154. -- part name: MacPaint
  155.  
  156.  
  157. -- part 67 (field)
  158. -- low flags: 81
  159. -- high flags: 2004
  160. -- rect: left=198 top=77 right=252 bottom=505
  161. -- title width / last selected line: 0
  162. -- icon id / first selected line: 0 / 0
  163. -- text alignment: 0
  164. -- font id: 3
  165. -- text size: 12
  166. -- style flags: 0
  167. -- line height: 16
  168. -- part name: TIFF
  169.  
  170.  
  171. -- part 69 (field)
  172. -- low flags: 81
  173. -- high flags: 2004
  174. -- rect: left=50 top=92 right=161 bottom=170
  175. -- title width / last selected line: 0
  176. -- icon id / first selected line: 0 / 0
  177. -- text alignment: 0
  178. -- font id: 3
  179. -- text size: 12
  180. -- style flags: 0
  181. -- line height: 16
  182. -- part name: Message Center 2
  183. ----- HyperTalk script -----
  184. on mouseUp
  185.   hide card field "Cover Card"
  186.   global whichExample,showState
  187.   put empty into whichExample
  188.   put empty into showState
  189.   put 1 + (the clickV - top of me) div textHeight of me into clickLine
  190.   if line clickLine of me is not empty then
  191.     put word 1 of line clickLine of card field "Message Center 2" into whichExample
  192.     put "‚Ä¢" into char 1 of line clickLine of card field "Message Center 2"
  193.     put card field whichExample into card field "Cover Card"
  194.     show card field "Cover Card"
  195.     wait 2 seconds
  196.     ResetMenuField
  197.   end if
  198. end mouseUp
  199.  
  200. on ResetMenuField
  201.   put " PICT" & return & " MacPaint" & return & " TIFF" & return into card field "Message Center 2"
  202. end ResetMenuField
  203.  
  204.  
  205.  
  206. -- part 70 (field)
  207. -- low flags: 81
  208. -- high flags: 2004
  209. -- rect: left=185 top=77 right=249 bottom=489
  210. -- title width / last selected line: 0
  211. -- icon id / first selected line: 0 / 0
  212. -- text alignment: 0
  213. -- font id: 3
  214. -- text size: 12
  215. -- style flags: 0
  216. -- line height: 16
  217. -- part name: Cover Card
  218.  
  219.  
  220. -- part 71 (button)
  221. -- low flags: 00
  222. -- high flags: A003
  223. -- rect: left=73 top=282 right=303 bottom=143
  224. -- title width / last selected line: 0
  225. -- icon id / first selected line: 0 / 0
  226. -- text alignment: 1
  227. -- font id: 0
  228. -- text size: 12
  229. -- style flags: 0
  230. -- line height: 16
  231. -- part name: Next ...
  232. ----- HyperTalk script -----
  233. on mouseUp
  234.   hide card field "Title Center"
  235.   show card field "Display Message"
  236.   show card field "Message Center 2"
  237.   show card button "Go Back"
  238.   show card button "Next ..."
  239. end mouseUp
  240.  
  241.  
  242.  
  243. -- part 72 (button)
  244. -- low flags: 80
  245. -- high flags: A003
  246. -- rect: left=73 top=282 right=303 bottom=143
  247. -- title width / last selected line: 0
  248. -- icon id / first selected line: 0 / 0
  249. -- text alignment: 1
  250. -- font id: 0
  251. -- text size: 12
  252. -- style flags: 0
  253. -- line height: 16
  254. -- part name: Go Back
  255. ----- HyperTalk script -----
  256. on mouseUp
  257.   hide card field "PICT"
  258.   hide card field "MacPaint"
  259.   hide card field "TIFF"
  260.   hide card field "Cover Card"
  261.   hide card field "Message Center 2"
  262.   hide card field "Display Message"
  263.   show card field "Title Center"
  264.   hide card button "Go Back"
  265.   show card button "Next ..."
  266. end mouseUp
  267.  
  268.  
  269.  
  270. -- part 73 (field)
  271. -- low flags: 81
  272. -- high flags: 0000
  273. -- rect: left=162 top=267 right=306 bottom=296
  274. -- title width / last selected line: 0
  275. -- icon id / first selected line: 0 / 0
  276. -- text alignment: 0
  277. -- font id: 3
  278. -- text size: 9
  279. -- style flags: 0
  280. -- line height: 12
  281. -- part name: Display Message
  282.  
  283.  
  284. -- part contents for card part 60
  285. ----- text -----
  286. Scanned images can be saved in three different file formats, allowing you to import images into many different applicat-ions.  The formats are as follows:
  287.  
  288.  
  289. -- part contents for card part 67
  290. ----- text -----
  291. TIFF is a standard supported by many major page layout applications.  It is useful for those applications that don't support PICT but do support TIFF.  The file contains an image description only.  The actual image is recreated by the application.  This standard can represent several types of image data‚Äîblack and white, color, and grayscale.
  292.  
  293. *Click on another File Format*  
  294.  
  295.  
  296. -- part contents for card part 66
  297. ----- text -----
  298. Images saved in the MacPaint format are bitmapped, and can be manipulated by the MacPaint drawing program.  Only that portion of the image currently visible on the screen is saved, and the image is saved at 72 dots per inch.
  299.  
  300. *Click on another File Format*
  301.  
  302. -- part contents for card part 65
  303. ----- text -----
  304. All Macintosh programs should be able to read PICT files.  This format is supported by Macintosh system software and QuickDraw 
  305. (routines in system software that are responsible for displaying text and graphics).  This format describes objects, text, and pixmaps (the multi-layer bit maps that describe color and grayscale images).
  306.  
  307. *Click on another File Format*
  308.  
  309.  
  310. -- part contents for card part 69
  311. ----- text -----
  312.  PICT
  313.  MacPaint
  314.  TIFF
  315.  
  316.  
  317. -- part contents for card part 70
  318. ----- text -----
  319. All Macintosh programs should be able to read PICT files.  This format is supported by Macintosh system software and QuickDraw 
  320. (routines in system software that are responsible for displaying text and graphics).  This format describes objects, text, and pixmaps (the multi-layer bit maps that describe color and grayscale images).
  321.  
  322. *Click on another File Format*
  323.  
  324.  
  325. -- part contents for card part 73
  326. ----- text -----
  327. Press any of the topics inside the field above for more information about it.